home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / migration / nsIBrowserProfileMigrator.h
Encoding:
C/C++ Source or Header  |  2006-05-08  |  7.8 KB  |  203 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIBrowserProfileMigrator.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIBrowserProfileMigrator_h__
  6. #define __gen_nsIBrowserProfileMigrator_h__
  7.  
  8.  
  9. #ifndef __gen_nsISupports_h__
  10. #include "nsISupports.h"
  11. #endif
  12.  
  13. /* For IDL files that don't want to include root IDL files. */
  14. #ifndef NS_NO_VTABLE
  15. #define NS_NO_VTABLE
  16. #endif
  17. class nsISupportsArray; /* forward declaration */
  18.  
  19. class nsIProfileStartup; /* forward declaration */
  20.  
  21.  
  22. /* starting interface:    nsIBrowserProfileMigrator */
  23. #define NS_IBROWSERPROFILEMIGRATOR_IID_STR "f8365b4a-da55-4e47-be7a-230142360f62"
  24.  
  25. #define NS_IBROWSERPROFILEMIGRATOR_IID \
  26.   {0xf8365b4a, 0xda55, 0x4e47, \
  27.     { 0xbe, 0x7a, 0x23, 0x01, 0x42, 0x36, 0x0f, 0x62 }}
  28.  
  29. class NS_NO_VTABLE nsIBrowserProfileMigrator : public nsISupports {
  30.  public: 
  31.  
  32.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IBROWSERPROFILEMIGRATOR_IID)
  33.  
  34.   /**
  35.    * profile items to migrate. use with migrate().
  36.    */
  37.   enum { ALL = 0U };
  38.  
  39.   enum { SETTINGS = 1U };
  40.  
  41.   enum { COOKIES = 2U };
  42.  
  43.   enum { HISTORY = 4U };
  44.  
  45.   enum { FORMDATA = 8U };
  46.  
  47.   enum { PASSWORDS = 16U };
  48.  
  49.   enum { BOOKMARKS = 32U };
  50.  
  51.   enum { OTHERDATA = 64U };
  52.  
  53.   /**
  54.    * Copy user profile information to the current active profile.
  55.    * @param aItems   list of data items to migrate. see above for values.
  56.    * @param aReplace replace or append current data where applicable. 
  57.    * @param aProfile profile to migrate from, if there is more than one.
  58.    */
  59.   /* void migrate (in unsigned short aItems, in nsIProfileStartup aStartup, in wstring aProfile); */
  60.   NS_IMETHOD Migrate(PRUint16 aItems, nsIProfileStartup *aStartup, const PRUnichar *aProfile) = 0;
  61.  
  62.   /**
  63.    * A bit field containing profile items that this migrator
  64.    * offers for import. 
  65.    * @param   aProfile the profile that we are looking for available data
  66.    *          to import
  67.    * @param   aStarting "true" if the profile is not currently being used.
  68.    * @returns bit field containing profile items (see above)
  69.    */
  70.   /* unsigned short getMigrateData (in wstring aProfile, in boolean aDoingStartup); */
  71.   NS_IMETHOD GetMigrateData(const PRUnichar *aProfile, PRBool aDoingStartup, PRUint16 *_retval) = 0;
  72.  
  73.   /** 
  74.    * Whether or not there is any data that can be imported from this 
  75.    * browser (i.e. whether or not it is installed, and there exists
  76.    * a user profile)
  77.    */
  78.   /* readonly attribute boolean sourceExists; */
  79.   NS_IMETHOD GetSourceExists(PRBool *aSourceExists) = 0;
  80.  
  81.   /** 
  82.    * Whether or not the import source implementing this interface
  83.    * has multiple user profiles configured.
  84.    */
  85.   /* readonly attribute boolean sourceHasMultipleProfiles; */
  86.   NS_IMETHOD GetSourceHasMultipleProfiles(PRBool *aSourceHasMultipleProfiles) = 0;
  87.  
  88.   /** 
  89.    * An enumeration of available profiles. If the import source does 
  90.    * not support profiles, this attribute is null.
  91.    */
  92.   /* readonly attribute nsISupportsArray sourceProfiles; */
  93.   NS_IMETHOD GetSourceProfiles(nsISupportsArray * *aSourceProfiles) = 0;
  94.  
  95.   /**
  96.    * The import source homepage.  Returns null if not present/available
  97.    */
  98.   /* readonly attribute AUTF8String sourceHomePageURL; */
  99.   NS_IMETHOD GetSourceHomePageURL(nsACString & aSourceHomePageURL) = 0;
  100.  
  101. };
  102.  
  103. /* Use this macro when declaring classes that implement this interface. */
  104. #define NS_DECL_NSIBROWSERPROFILEMIGRATOR \
  105.   NS_IMETHOD Migrate(PRUint16 aItems, nsIProfileStartup *aStartup, const PRUnichar *aProfile); \
  106.   NS_IMETHOD GetMigrateData(const PRUnichar *aProfile, PRBool aDoingStartup, PRUint16 *_retval); \
  107.   NS_IMETHOD GetSourceExists(PRBool *aSourceExists); \
  108.   NS_IMETHOD GetSourceHasMultipleProfiles(PRBool *aSourceHasMultipleProfiles); \
  109.   NS_IMETHOD GetSourceProfiles(nsISupportsArray * *aSourceProfiles); \
  110.   NS_IMETHOD GetSourceHomePageURL(nsACString & aSourceHomePageURL); 
  111.  
  112. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  113. #define NS_FORWARD_NSIBROWSERPROFILEMIGRATOR(_to) \
  114.   NS_IMETHOD Migrate(PRUint16 aItems, nsIProfileStartup *aStartup, const PRUnichar *aProfile) { return _to Migrate(aItems, aStartup, aProfile); } \
  115.   NS_IMETHOD GetMigrateData(const PRUnichar *aProfile, PRBool aDoingStartup, PRUint16 *_retval) { return _to GetMigrateData(aProfile, aDoingStartup, _retval); } \
  116.   NS_IMETHOD GetSourceExists(PRBool *aSourceExists) { return _to GetSourceExists(aSourceExists); } \
  117.   NS_IMETHOD GetSourceHasMultipleProfiles(PRBool *aSourceHasMultipleProfiles) { return _to GetSourceHasMultipleProfiles(aSourceHasMultipleProfiles); } \
  118.   NS_IMETHOD GetSourceProfiles(nsISupportsArray * *aSourceProfiles) { return _to GetSourceProfiles(aSourceProfiles); } \
  119.   NS_IMETHOD GetSourceHomePageURL(nsACString & aSourceHomePageURL) { return _to GetSourceHomePageURL(aSourceHomePageURL); } 
  120.  
  121. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  122. #define NS_FORWARD_SAFE_NSIBROWSERPROFILEMIGRATOR(_to) \
  123.   NS_IMETHOD Migrate(PRUint16 aItems, nsIProfileStartup *aStartup, const PRUnichar *aProfile) { return !_to ? NS_ERROR_NULL_POINTER : _to->Migrate(aItems, aStartup, aProfile); } \
  124.   NS_IMETHOD GetMigrateData(const PRUnichar *aProfile, PRBool aDoingStartup, PRUint16 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMigrateData(aProfile, aDoingStartup, _retval); } \
  125.   NS_IMETHOD GetSourceExists(PRBool *aSourceExists) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSourceExists(aSourceExists); } \
  126.   NS_IMETHOD GetSourceHasMultipleProfiles(PRBool *aSourceHasMultipleProfiles) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSourceHasMultipleProfiles(aSourceHasMultipleProfiles); } \
  127.   NS_IMETHOD GetSourceProfiles(nsISupportsArray * *aSourceProfiles) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSourceProfiles(aSourceProfiles); } \
  128.   NS_IMETHOD GetSourceHomePageURL(nsACString & aSourceHomePageURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSourceHomePageURL(aSourceHomePageURL); } 
  129.  
  130. #if 0
  131. /* Use the code below as a template for the implementation class for this interface. */
  132.  
  133. /* Header file */
  134. class nsBrowserProfileMigrator : public nsIBrowserProfileMigrator
  135. {
  136. public:
  137.   NS_DECL_ISUPPORTS
  138.   NS_DECL_NSIBROWSERPROFILEMIGRATOR
  139.  
  140.   nsBrowserProfileMigrator();
  141.  
  142. private:
  143.   ~nsBrowserProfileMigrator();
  144.  
  145. protected:
  146.   /* additional members */
  147. };
  148.  
  149. /* Implementation file */
  150. NS_IMPL_ISUPPORTS1(nsBrowserProfileMigrator, nsIBrowserProfileMigrator)
  151.  
  152. nsBrowserProfileMigrator::nsBrowserProfileMigrator()
  153. {
  154.   /* member initializers and constructor code */
  155. }
  156.  
  157. nsBrowserProfileMigrator::~nsBrowserProfileMigrator()
  158. {
  159.   /* destructor code */
  160. }
  161.  
  162. /* void migrate (in unsigned short aItems, in nsIProfileStartup aStartup, in wstring aProfile); */
  163. NS_IMETHODIMP nsBrowserProfileMigrator::Migrate(PRUint16 aItems, nsIProfileStartup *aStartup, const PRUnichar *aProfile)
  164. {
  165.     return NS_ERROR_NOT_IMPLEMENTED;
  166. }
  167.  
  168. /* unsigned short getMigrateData (in wstring aProfile, in boolean aDoingStartup); */
  169. NS_IMETHODIMP nsBrowserProfileMigrator::GetMigrateData(const PRUnichar *aProfile, PRBool aDoingStartup, PRUint16 *_retval)
  170. {
  171.     return NS_ERROR_NOT_IMPLEMENTED;
  172. }
  173.  
  174. /* readonly attribute boolean sourceExists; */
  175. NS_IMETHODIMP nsBrowserProfileMigrator::GetSourceExists(PRBool *aSourceExists)
  176. {
  177.     return NS_ERROR_NOT_IMPLEMENTED;
  178. }
  179.  
  180. /* readonly attribute boolean sourceHasMultipleProfiles; */
  181. NS_IMETHODIMP nsBrowserProfileMigrator::GetSourceHasMultipleProfiles(PRBool *aSourceHasMultipleProfiles)
  182. {
  183.     return NS_ERROR_NOT_IMPLEMENTED;
  184. }
  185.  
  186. /* readonly attribute nsISupportsArray sourceProfiles; */
  187. NS_IMETHODIMP nsBrowserProfileMigrator::GetSourceProfiles(nsISupportsArray * *aSourceProfiles)
  188. {
  189.     return NS_ERROR_NOT_IMPLEMENTED;
  190. }
  191.  
  192. /* readonly attribute AUTF8String sourceHomePageURL; */
  193. NS_IMETHODIMP nsBrowserProfileMigrator::GetSourceHomePageURL(nsACString & aSourceHomePageURL)
  194. {
  195.     return NS_ERROR_NOT_IMPLEMENTED;
  196. }
  197.  
  198. /* End of implementation class template. */
  199. #endif
  200.  
  201.  
  202. #endif /* __gen_nsIBrowserProfileMigrator_h__ */
  203.